home *** CD-ROM | disk | FTP | other *** search
/ IRIX 5.3 for Indy R4400 / IRIX 5.3 for Indy R4400 175MHz.img / dist / eoe2.idb / usr / sbin / h2ph.z / h2ph
Text File  |  1995-02-28  |  6KB  |  272 lines

  1. #!/usr/sbin/perl
  2. 'di';
  3. 'ig00';
  4.  
  5. $perlincl = '/usr/lib/perl';
  6.  
  7. chdir '/usr/include' || die "Can't cd /usr/include";
  8.  
  9. @isatype = split(' ',<<END);
  10.     char    uchar    u_char
  11.     short    ushort    u_short
  12.     int    uint    u_int
  13.     long    ulong    u_long
  14.     FILE
  15. END
  16.  
  17. @isatype{@isatype} = (1) x @isatype;
  18.  
  19. @ARGV = ('-') unless @ARGV;
  20.  
  21. foreach $file (@ARGV) {
  22.     if ($file eq '-') {
  23.     open(IN, "-");
  24.     open(OUT, ">-");
  25.     }
  26.     else {
  27.     ($outfile = $file) =~ s/\.h$/.ph/ || next;
  28.     print "$file -> $outfile\n";
  29.     if ($file =~ m|^(.*)/|) {
  30.         $dir = $1;
  31.         if (!-d "$perlincl/$dir") {
  32.         mkdir("$perlincl/$dir",0777);
  33.         }
  34.     }
  35.     open(IN,"$file") || ((warn "Can't open $file: $!\n"),next);
  36.     open(OUT,">$perlincl/$outfile") || die "Can't create $outfile: $!\n";
  37.     }
  38.     while (<IN>) {
  39.     chop;
  40.     while (/\\$/) {
  41.         chop;
  42.         $_ .= <IN>;
  43.         chop;
  44.     }
  45.     if (s:/\*:\200:g) {
  46.         s:\*/:\201:g;
  47.         s/\200[^\201]*\201//g;    # delete single line comments
  48.         if (s/\200.*//) {        # begin multi-line comment?
  49.         $_ .= '/*';
  50.         $_ .= <IN>;
  51.         redo;
  52.         }
  53.     }
  54.     if (s/^#\s*//) {
  55. # check for sgidefs.h, where we need to insert the compiler
  56. # defined macros:
  57.         if ($file eq 'sgidefs.h' && /__cplusplus/) {
  58.         print OUT <<END
  59. # Grrr.  Compiler defines in include files...
  60.     eval 'sub _MIPS_FPSET {16;}';
  61.     eval 'sub _MIPS_SZINT {32;}';
  62.     eval 'sub _MIPS_SZLONG {32;}';
  63.     eval 'sub _MIPS_SZPTR {32;}';
  64.     eval 'sub _MIPS_ISA {_MIPS_ISA_MIPS1;}';
  65.     eval 'sub _MIPS_SIM {_MIPS_SIM_ABI32;}';
  66. #
  67. END
  68.         }
  69.         if ($file =~ /select.h/ && /^ifndef NBBY/) {
  70.         print OUT "require 'sgidefs.ph';\n";
  71.         }
  72.  
  73.         if (s/^define\s+(\w+)//) {
  74.         $name = $1;
  75.         $new = '';
  76.         s/\s+$//;
  77.         if (s/^\(([\w,\s]*)\)//) {
  78.             $args = $1;
  79.             if ($args ne '') {
  80.             foreach $arg (split(/,\s*/,$args)) {
  81.                 $arg =~ s/^\s*([^\s].*[^\s])\s*$/$1/;
  82.                 $curargs{$arg} = 1;
  83.             }
  84.             $args =~ s/\b(\w)/\$$1/g;
  85.             $args = "local($args) = \@_;\n$t    ";
  86.             }
  87.             s/^\s+//;
  88.             do expr();
  89.             $new =~ s/(["\\])/\\$1/g;
  90.             if ($t ne '') {
  91.             $new =~ s/(['\\])/\\$1/g;
  92.             print OUT $t,
  93.               "eval 'sub $name {\n$t    ${args}eval \"$new\";\n$t}';\n";
  94.             }
  95.             else {
  96.             print OUT "sub $name {\n    ${args}eval \"$new\";\n}\n";
  97.             }
  98.             %curargs = ();
  99.         }
  100.         else {
  101.             s/^\s+//;
  102.             do expr();
  103.             $new = 1 if $new eq '';
  104.             if ($t ne '') {
  105.             $new =~ s/(['\\])/\\$1/g;
  106.             print OUT $t,"eval 'sub $name {",$new,";}';\n";
  107.             }
  108.             else {
  109.             print OUT $t,"sub $name {",$new,";}\n";
  110.             }
  111.         }
  112.         }
  113.         elsif (/^include\s+<(.*)>/) {
  114.         ($incl = $1) =~ s/\.h$/.ph/;
  115.         print OUT $t,"require '$incl';\n";
  116.         }
  117.         elsif (/^ifdef\s+(\w+)/) {
  118.         print OUT $t,"if (defined &$1) {\n";
  119.         $tab += 4;
  120.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  121.         }
  122.         elsif (/^ifndef\s+(\w+)/) {
  123.         print OUT $t,"if (!defined &$1) {\n";
  124.         $tab += 4;
  125.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  126.         }
  127.         elsif (s/^if\s+//) {
  128.         $new = '';
  129.         do expr();
  130.         print OUT $t,"if ($new) {\n";
  131.         $tab += 4;
  132.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  133.         }
  134.         elsif (s/^elif\s+//) {
  135.         $new = '';
  136.         do expr();
  137.         $tab -= 4;
  138.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  139.         print OUT $t,"}\n${t}elsif ($new) {\n";
  140.         $tab += 4;
  141.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  142.         }
  143.         elsif (/^else/) {
  144.         $tab -= 4;
  145.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  146.         print OUT $t,"}\n${t}else {\n";
  147.         $tab += 4;
  148.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  149.         }
  150.         elsif (/^endif/) {
  151.         $tab -= 4;
  152.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  153.         print OUT $t,"}\n";
  154.         }
  155.     }
  156.     }
  157.     print OUT "1;\n";
  158. }
  159.  
  160. sub expr {
  161.     while ($_ ne '') {
  162.     s/^(\s+)//        && do {$new .= ' '; next;};
  163.     s/^(0x[0-9a-fA-F]+)//    && do {$new .= $1; next;};
  164.     s/^(\d+)//        && do {$new .= $1; next;};
  165.     s/^("(\\"|[^"])*")//    && do {$new .= $1; next;};
  166.     s/^'((\\"|[^"])*)'//    && do {
  167.         if ($curargs{$1}) {
  168.         $new .= "ord('\$$1')";
  169.         }
  170.         else {
  171.         $new .= "ord('$1')";
  172.         }
  173.         next;
  174.     };
  175.     s/^sizeof\s*\(([^)]+)\)/{$1}/ && do {
  176.         $new .= '$sizeof';
  177.         next;
  178.     };
  179.     s/^([_a-zA-Z]\w*)//    && do {
  180.         $id = $1;
  181.         if ($id eq 'struct') {
  182.         s/^\s+(\w+)//;
  183.         $id .= ' ' . $1;
  184.         $isatype{$id} = 1;
  185.         }
  186.         elsif ($id eq 'unsigned') {
  187.         s/^\s+(\w+)//;
  188.         $id .= ' ' . $1;
  189.         $isatype{$id} = 1;
  190.         }
  191.         if ($curargs{$id}) {
  192.         $new .= '$' . $id;
  193.         }
  194.         elsif ($id eq 'defined') {
  195.         $new .= 'defined';
  196.         }
  197.         elsif (/^\(/) {
  198.         s/^\((\w),/("$1",/ if $id =~ /^_IO[WR]*$/i;    # cheat
  199.         $new .= " &$id";
  200.         }
  201.         elsif ($isatype{$id}) {
  202.         if ($new =~ /{\s*$/) {
  203.             $new .= "'$id'";
  204.         }
  205.         elsif ($new =~ /\(\s*$/ && /^[\s*]*\)/) {
  206.             $new =~ s/\(\s*$//;
  207.             s/^[\s*]*\)//;
  208.         }
  209.         else {
  210.             $new .= $id;
  211.         }
  212.         }
  213.         else {
  214.         $new .= ' &' . $id;
  215.         }
  216.         next;
  217.     };
  218.     s/^(.)//            && do {$new .= $1; next;};
  219.     }
  220. }
  221. ##############################################################################
  222.  
  223.     # These next few lines are legal in both Perl and nroff.
  224.  
  225. .00;            # finish .ig
  226.  
  227. 'di            \" finish diversion--previous line must be blank
  228. .nr nl 0-1        \" fake up transition to first page again
  229. .nr % 0            \" start at page 1
  230. '; __END__ ############# From here on it's a standard manual page ############
  231. .TH H2PH 1 "August 8, 1990"
  232. .AT 3
  233. .SH NAME
  234. h2ph \- convert .h C header files to .ph Perl header files
  235. .SH SYNOPSIS
  236. .B h2ph [headerfiles]
  237. .SH DESCRIPTION
  238. .I h2ph
  239. converts any C header files specified to the corresponding Perl header file
  240. format.
  241. It is most easily run while in /usr/include:
  242. .nf
  243.  
  244.     cd /usr/include; h2ph * sys/*
  245.  
  246. .fi
  247. If run with no arguments, filters standard input to standard output.
  248. .SH ENVIRONMENT
  249. No environment variables are used.
  250. .SH FILES
  251. /usr/include/*.h
  252. .br
  253. /usr/include/sys/*.h
  254. .br
  255. etc.
  256. .SH AUTHOR
  257. Larry Wall
  258. .SH "SEE ALSO"
  259. perl(1)
  260. .SH DIAGNOSTICS
  261. The usual warnings if it can't read or write the files involved.
  262. .SH BUGS
  263. Doesn't construct the %sizeof array for you.
  264. .PP
  265. It doesn't handle all C constructs, but it does attempt to isolate
  266. definitions inside evals so that you can get at the definitions
  267. that it can translate.
  268. .PP
  269. It's only intended as a rough tool.
  270. You may need to dicker with the files produced.
  271. .ex
  272.